From: Hamish Guthrie Date: Wed, 30 May 2007 10:49:46 +0000 (+0000) Subject: Fixed trx - variable append used uninitialised. If -A option was not used, the first... X-Git-Url: http://git.openwrt.org/%22http:/oss.oetiker.ch/rrdtool//%22/%22http:/oss.oetiker.ch/rrdtool/%22?a=commitdiff_plain;h=d23b96204576f77ef88317cd8de07a0b62e8c3cf;p=project%2Ffirmware-utils.git Fixed trx - variable append used uninitialised. If -A option was not used, the first offset was not written to the .trx file. SVN-Revision: 7400 --- diff --git a/src/trx.c b/src/trx.c index 1131238..f2ad991 100644 --- a/src/trx.c +++ b/src/trx.c @@ -88,7 +88,7 @@ int main(int argc, char **argv) char *ofn = NULL; char *buf; char *e; - int c, i, append; + int c, i, append = 0; size_t n; uint32_t cur_len; unsigned long maxlen = TRX_MAX_LEN; @@ -230,7 +230,8 @@ int main(int argc, char **argv) } fclose(out); - + + printf("Offsets:\n0x%08x\n0x%08x\n0x%08x\n", p->offsets[0], p->offsets[1], p->offsets[2]); return EXIT_SUCCESS; }